home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / FocusOwn.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.3 KB  |  56 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _FOCUSOWN_
  4. #define _FOCUSOWN_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13.  
  14. interface  ODFocusOwnerIterator;
  15.  
  16. //=====================================================================================
  17. // Classes used by this interface
  18. //=====================================================================================
  19.  
  20. interface  ODFocusModule;
  21. interface  ODFrame;
  22.  
  23. //=====================================================================================
  24. // Class ODFocusOwnerIterator
  25. //=====================================================================================
  26.  
  27. interface ODFocusOwnerIterator : ODObject
  28. {
  29.     void InitFocusOwnerIterator(in ODTypeToken focus,
  30.                                 in ODFocusModule focusModule);
  31.  
  32.     ODFrame First();
  33.  
  34.     ODFrame Next();
  35.  
  36.     ODBoolean IsNotComplete();
  37.  
  38. #ifdef __SOMIDL__
  39.     implementation
  40.     {
  41.         majorversion = 1; minorversion = 0;
  42.  
  43.           functionprefix = ODFocusOwnerIterator;
  44.         
  45.         releaseorder:
  46.             InitFocusOwnerIterator,
  47.             First,
  48.             Next,
  49.             IsNotComplete;
  50.         
  51.       };
  52. #endif //# __SOMIDL__
  53. };
  54.  
  55. #endif //# _FOCUSOWN_
  56.